home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Shareware World / Info / For Developers / MacZoop 1.8.3 / Required Classes / Z Sources / ZObject.cpp < prev    next >
Text File  |  1998-06-11  |  956b  |  48 lines

  1. /*************************************************************************************************
  2. *
  3. *
  4. *            MacZoop - "the framework for the rest of us"         
  5. *
  6. *
  7. *
  8. *            ZObject.cpp            -- the root object (abstract class)
  9. *
  10. *
  11. *
  12. *
  13. *
  14. *            © 1998, Graham Cox
  15. *
  16. *
  17. *
  18. *
  19. *************************************************************************************************/
  20.  
  21. #include    "ZObject.h"
  22. #include    "ZObjectArray.cpp"
  23. #include    "MacZoop.h"
  24.  
  25. #if _MACZOOP_STREAMS
  26.  
  27. ZClassRegistry*        gClasses = new ZClassRegistry();
  28.  
  29. CLASSCONSTRUCTOR( ZObjectList );
  30.  
  31. /*----------------------------***  GETCLASSNAME  ***------------------------------*/
  32. /*
  33. return the human readable name of the class of this object
  34. ----------------------------------------------------------------------------------*/
  35.  
  36.  
  37. void    ZObject::GetClassName( Str255 aName )
  38. {
  39.     gClasses->GetNameOfClass( classID, aName );
  40. }
  41.  
  42. #else
  43.  
  44. ZClassRegistry*        gClasses = NULL;
  45.  
  46. void    ZObject::GetClassName( Str255 aName ) {}
  47.  
  48. #endif